* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
}

body {
    width: 100%;
    min-height: 100vh;

    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;

    background-image: url("fond blanc.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* =========================
   CONTENEUR PRINCIPAL
   ========================= */

.container {
    width: min(100% - 30px, 1000px);
    margin: 20px auto;
    padding: clamp(10px, 3vw, 25px);

    background-color: lightblue;

    box-shadow: 10px -10px 0 rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}


/* =========================
   EN-TÊTE
   ========================= */

.header {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 30px);

    margin-bottom: clamp(20px, 4vw, 40px);
}

.header img {
    width: clamp(90px, 15vw, 150px);
    height: clamp(90px, 15vw, 150px);

    flex-shrink: 0;

    object-fit: cover;
    border-radius: 50%;
}


/* Partie texte de l'en-tête */

.header .details {
    flex: 1;
    min-width: 0;
}

.header .details h1 {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: bold;
    margin-bottom: 10px;
}

h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(3, 3, 15);
    text-align: center;
}

h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: darkblue;

    margin-left: 0;

    font-size: clamp(18px, 3vw, 32px);
    text-align: center;
}


/* =========================
   INFORMATIONS CONTACT
   ========================= */

.header .details p {
    margin-bottom: 5px;
}

h5 {
    font-family: 'Courier New', Courier, monospace;
    color: rgb(12, 12, 14);

    font-size: clamp(12px, 1.8vw, 18px);

    display: flex;
    flex-wrap: wrap;
    gap: 50px 90px;
}

.decalage {
    margin-left: 0px;
}


/* =========================
   SECTIONS
   ========================= */

section {
    width: 100%;

    background-color: lightyellow;

    border: 2px solid black;
    border-radius: 10px;

    margin: 10px 0 20px;

    box-shadow: 10px -10px 3px grey;

    overflow: hidden;
}

.section {
    width: 100%;
    margin-bottom: 0;
}


/* =========================
   TITRES
   ========================= */

h2 {
    text-decoration: underline;
    color: white;

    background-color: darkblue;

    border-top-right-radius: 10px;
    border-top-left-radius: 10px;

    padding: 8px 10px;

    font-size: clamp(18px, 3vw, 24px);
}

.section h2 {
    margin-bottom: 0;
}


/* =========================
   TABLEAUX
   ========================= */

table {
    width: 100%;

    border-collapse: collapse;
    border-spacing: 0;

    margin-bottom: 0;

    table-layout: fixed;
}

table th {
    text-align: left;

    background-color: skyblue;

    padding: clamp(5px, 1.5vw, 10px);

    border: 2px solid black;

    font-size: clamp(13px, 1.7vw, 18px);

    overflow-wrap: break-word;
}

table td {
    padding: clamp(5px, 1.5vw, 10px);

    border: 1px solid black;

    font-size: clamp(12px, 1.5vw, 16px);

    overflow-wrap: anywhere;
    word-break: normal;
}

table tr:nth-child(even) td {
    background-color: lightyellow;
}


/* =========================
   LISTES
   ========================= */

ul {
    list-style: disc;

    margin-left: clamp(20px, 4vw, 30px);

    padding-right: 15px;
}

ul li {
    margin-bottom: 10px;

    overflow-wrap: anywhere;

    font-size: clamp(13px, 1.6vw, 16px);
}

ul li:last-child {
    margin-bottom: 0;
}


/* =========================
   LIENS
   ========================= */

a {
    color: blue;

    overflow-wrap: anywhere;
}

a:hover {
    color: red;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* =========================
   TEXTES INFORMATIONS
   ========================= */

h6 {
    color: rgb(236, 33, 33);

    font-size: clamp(12px, 1.6vw, 16px);

    margin: 10px 0 10px 20px;
}

.moi {
    text-align: center;
}


/* =========================
   FLEX
   ========================= */

.flex-container {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;
}

.flex-item {
    flex: 1 1 250px;

    margin: 10px;
}